home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Extra 1997 #1 / Amiga Plus Extra 1997 #1.iso / programme / tools / obtainpens / install < prev    next >
Encoding:
Text File  |  1996-11-23  |  943 b   |  27 lines

  1. ;  ObtainPens-InstallerScript
  2.  
  3. (if (< (/ (getversion) 65536) 39)
  4.     (abort "\n\n\n\nSorry, but ObtainPens requires AmigaOS 3.")
  5. )
  6.  
  7. (set destdir
  8.     (askdir
  9.         (prompt "ObtainPens ©1996 by ALeX Kazik\n\nWhere should the programm be placed?")
  10.         (help @askdir-help)
  11.         (default "C:")
  12.     )
  13. )
  14.  
  15. (copyfiles
  16.     (source "ObtainPens")
  17.     (dest destdir)
  18. )
  19.  
  20. (startup "ObtainPens"
  21.     (prompt "ObtainPens ©1996 by ALeX Kazik\n\n\n\nNow, ObtainPens will be added to your User-Startup.")
  22.     (help @startup-help)
  23.     (command ("run <NIL: >NIL: %s\nWait 1\n;  If  this  second is too  long for You,  move this\n;  statement up, and read the readme, why You should\n;  make this.            ObtainPens ©1996 ALeX Kazik" (expandpath (tackon destdir "ObtainPens"))))
  24. )
  25.  
  26. (exit "ObtainPens ©1996 by ALeX Kazik\n\n\nObtainPens is CARD/MAILWARE.\n\nSend me a postcard or a E-Mail.\n\n\nALeX Kazik\nStapenhorststr. 81\n33615 Bielefeld\nGermany\n\nakazik@TechFak.Uni-Bielefeld.DE" (quiet))
  27.